home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / blrmu13.zip / TONL.ASM < prev    next >
Assembly Source File  |  1990-07-31  |  435b  |  21 lines

  1. page ,132
  2. title tonl ( turn off num lock ) - as of 07/31/90 - 07:30 pm
  3. ;
  4. code     segment para public 'code'
  5. ;
  6.          org   256
  7. ;
  8.          assume cs:code
  9. ;
  10. tonl:
  11. ;
  12.          mov   ax,0                  ; set
  13.          mov   ds,ax                 ; ds = 0
  14.          mov   bx,0417h              ; ptr to Num Lock
  15.          and   byte ptr [bx],0DFH    ; and with x'df'
  16.          ret
  17. ;
  18. code     ends
  19. ;
  20.          end   tonl
  21.